home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / lib / acct / nulladm.z / nulladm
Text File  |  1995-02-28  |  739b  |  26 lines

  1. #!/sbin/sh
  2. #    Copyright (c) 1993 UNIX System Laboratories, Inc.
  3. #      All Rights Reserved
  4.  
  5. #    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF
  6. #    UNIX System Laboratories, Inc.       
  7. #    The copyright notice above does not evidence any
  8. #    actual or intended publication of such source code.
  9.  
  10. #    copyright    "%c%"
  11.  
  12. #ident    "@(#)acct:common/cmd/acct/nulladm.sh    1.5.1.3"
  13. #ident "$Header: /proj/irix5.3/isms/irix/cmd/acct/RCS/nulladm.sh,v 1.2 1993/11/05 04:26:35 jwag Exp $"
  14. #    "nulladm name..."
  15. #    "creates each named file mode 664"
  16. #    "make sure owned by adm (in case created by root)"
  17. for _file
  18. do
  19.     test ! -f $_file && rm -f $_file
  20.     test -f $_file -a ! -w $_file && rm -f $_file
  21.     cp /dev/null $_file
  22.     chmod 664 $_file
  23.     chgrp adm $_file
  24.     chown adm $_file
  25. done
  26.